home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000040_news@newsmaster….columbia.edu _Tue Jul 8 14:48:27 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA12472
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 8 Jul 1997 14:48:27 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA12101
  7.     for kermit.misc@watsun; Tue, 8 Jul 1997 14:48:26 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc,comp.os.aos
  11. Subject: Re: Getting Kermit onto a DG machine
  12. Date: 8 Jul 1997 18:48:25 GMT
  13. Organization: Columbia University
  14. Lines: 38
  15. Distribution: inet
  16. Message-ID: <5pu21p$159$1@apakabar.cc.columbia.edu>
  17. References: <5ps6of$oms$1@walton.videotron.net>
  18. NNTP-Posting-Host: watsun.cc.columbia.edu
  19. Xref: news.columbia.edu comp.protocols.kermit.misc:7293 comp.os.aos:1080
  20.  
  21. In article <5ps6of$oms$1@walton.videotron.net>,
  22. jfmezei  <"jfmezei"@videotron.ca[nospam]> wrote:
  23. : I have recently inherited maintenance of an old DG MV15000 running
  24. : AOS-VS 7.64 , and of course, the first thing I want to do to it in order
  25. : to be able to manage it is to get kermit running in server mode on it so
  26. : I can transfer files to a system with a decent editor etc.
  27. : I managed to download the kermit for AOS-VS from the columbia site, but
  28. : the only tool I have to get onto the DG is a CEO-BLAST program. The
  29. : latter did transfer the .PR file, but created it as a UDF type which the
  30. : DG won't allow me to execute.
  31. Giving this type to a downloaded file must be a peculiarity of Blast --
  32. it doesn't happen with FTP or Kermit.
  33.  
  34. : Any hints on how to make that file look like an executable ?
  35. The advice posted by Roderick Anderson works:
  36.  
  37.   create/type=prv x.x
  38.   copy/a x.x kermit.pr
  39.   delete kermit.pr
  40.   rename x.x kermit.pr
  41.  
  42. You can also use create/type=unx.  (Note: The AOS/VS COPY command is
  43. right-to-left rather than left-to-right.)
  44.  
  45. : Also, the kermit doc said that it was compiled for 7.69. Anyone know if
  46. : it would work on 7.64 ? That machine does have a c compiler.
  47. I have no idea.  However, should you find that the distributed binary does
  48. not work on your version, let me know and I'll tell you how to build from
  49. source code.
  50.  
  51. Also note that AOS/VS and AOS/VS-II are two separate operating systems;
  52. there is a separate C-Kermit binary for each.
  53.  
  54. - Frank